home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib8 / v_10_06 / 1006083a < prev    next >
Encoding:
Text File  |  1995-11-01  |  129 b   |  6 lines

  1. /* an example of a makefile with a recursive dependency */
  2. hello.obj : hello.c proto.h
  3.         cc hello.c
  4.  
  5. proto.h : hello.obj
  6.